home *** CD-ROM | disk | FTP | other *** search
- #define TYPE_LEN 4
- #define GOOD 1
- #define BAD 0
-
- typedef unsigned char Str4[5]; // custom type to conserve memory
-
- void Open_Changer_DLOG(void);
- void Update_Change_Dialog(void);
- void Draw_Dialog(void);
- int Handle_OK_Change(void);
- int Check_Type_Data(int);
- OSType Set_Type(int);
-
- extern FInfo File_Info;
- extern Str255 File_Name;
- extern int V_Ref_Num;
-
- DialogPtr The_Dialog;
- int PREV_ALERT=FALSE;
-
- typedef union // Used this to convert the types to and from strings.
- {
- Str4 TEXT;
- OSType LONG;
- } File_Union;